home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2004-067.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  69 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2004:067
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(14166);
  12.  script_version ("$Revision: 1.2 $");
  13.  script_cve_id("CAN-2004-0633", "CAN-2004-0634", "CAN-2004-0635");
  14.  
  15.  name["english"] = "MDKSA-2004:067: ethereal";
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. The remote host is missing the patch for the advisory MDKSA-2004:067 (ethereal).
  21.  
  22.  
  23. Three vulnerabilities were discovered in Ethereal versions prior to 0.10.5 in
  24. the iSNS, SMB SID, and SNMP dissectors. It may be possible to make Ethereal
  25. crash or run arbitrary code by injecting a purposefully malformed packet into
  26. the wire or by convincing someone to read a malformed packet trace file.
  27. These vulnerabilities have been corrected in Ethereal 0.10.5.
  28.  
  29.  
  30. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2004:067
  31. Risk factor : High";
  32.  
  33.  
  34.  
  35.  script_description(english:desc["english"]);
  36.  
  37.  summary["english"] = "Check for the version of the ethereal package";
  38.  script_summary(english:summary["english"]);
  39.  
  40.  script_category(ACT_GATHER_INFO);
  41.  
  42.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  43.  family["english"] = "Mandrake Local Security Checks";
  44.  script_family(english:family["english"]);
  45.  
  46.  script_dependencies("ssh_get_info.nasl");
  47.  script_require_keys("Host/Mandrake/rpm-list");
  48.  exit(0);
  49. }
  50.  
  51. include("rpm.inc");
  52. if ( rpm_check( reference:"ethereal-0.10.5-0.1.100mdk", release:"MDK10.0", yank:"mdk") )
  53. {
  54.  security_hole(0);
  55.  exit(0);
  56. }
  57. if ( rpm_check( reference:"ethereal-0.10.5-0.1.92mdk", release:"MDK9.2", yank:"mdk") )
  58. {
  59.  security_hole(0);
  60.  exit(0);
  61. }
  62. if (rpm_exists(rpm:"ethereal-", release:"MDK10.0")
  63.  || rpm_exists(rpm:"ethereal-", release:"MDK9.2") )
  64. {
  65.  set_kb_item(name:"CAN-2004-0633", value:TRUE);
  66.  set_kb_item(name:"CAN-2004-0634", value:TRUE);
  67.  set_kb_item(name:"CAN-2004-0635", value:TRUE);
  68. }
  69.